home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software of the Month Club 1996 August
/
Software of the Month Club 1996 August.iso
/
pc
/
dos
/
edu
/
mscope
/
inst2.bat
< prev
next >
Wrap
DOS Batch File
|
1995-10-31
|
5KB
|
101 lines
echo off
CLS
:rep1
ECHO Please insert next disc into floppy drive and press enter...
pause
REM +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
rem + check this is next disc +
REM +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
if exist %2:\MSCOPE2B.EXE goto disc2
echo This is not disc 2!
goto rep1
REM +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
rem + COPY FROM FLOPPY A +
REM +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
:disc2
ERASE %1:\MSCOPE\MICTEST1.TMP
cls
ECHO While you're waiting, a bit more info:-
ECHO ╔═════════════════════════════════════════════════════════════════╗
ECHO ║ Microscope uses electronic slidesets. Many packs, consisting of ║
ECHO ║ compressed sets, can be obtained from your SHAREWARE dealer. ║
ECHO ║ They advertise and demonstrate images and slides taken from the ║
ECHO ║ professional slidesets used by registered PROfessional versions ║
ECHO ║ of Microscope for the PC. ║
ECHO ║ ║
ECHO ║ It doesn't end there: if you register for the full PRO version, ║
ECHO ║ you will have effectively joined a unique club. Full colour ║
ECHO ║ stand-alone images, video films, newsletters, world co-op, and ║
ECHO ║ support in electronic microscopy is on offer. ║
ECHO ╚═════════════════════════════════════════════════════════════════╝
echo copying Microscope Ver 2.0 Disc 2 files to %1:\MSCOPE
copy %2:\*.* %1:\MSCOPE\*.*
CLS
REM +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
rem + ENTER NEW DIR AND UNCOMPRESS FILES +
REM +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
mscope2a
erase %1:\MSCOPE\mscope2a.exe > NUL
mscope2b
erase %1:\MSCOPE\mscope2b.exe > NUL
REM +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
rem + RUN SETUP.EXE +
REM +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
IF EXIST SETUP.EXE GOTO runsetup
ECHO SETUP.EXE not found in %1:\MSCOPE directory - can't complete install!
goto end
:runsetup
CLS
ECHO MICROSCOPE has different language translations and two different
echo screens to enable people all over the world to enjoy the software.
echo A test will be made now to see which language files exist.
echo You will be asked to select one. When this happens please follow
echo the on-screen instructions.
echo
echo Two screens exist: 1 in English and another appropriate for use
echo by all non-English speaking communities. You will also be asked
echo to select one of these screens. Note: Languages and screens may
echo be re-selected later when using the software. It is important to
echo select a language you understand to complete this installation
echo fully.
pause
SETUP.EXE
CLS
ECHO INSTALLATION will now check to see what slidesets exist on your
echo hard disc. Any found will be installed into Microscope's control
echo database so they can be accessible when using Microscope.
echo The screen may clear several times if you have a lot of slidesets
echo installed. Please be patient and let the process complete. You
echo will be asked to confirm that you wish to install all slidesets.
echo Please answer YES by pressing the appropriate key which will be
echo indicated in a message that follows asking you to clarify the
echo request to install all slidesets.
pause
MIC_CTRL IN:*.*
goto end
:error1
echo Install failed : cannot switch to %1:\mscope
:end
cls
echo Microscope for the PC (SHAREWARE EVALUATION VERSION)is installed!
echo To use Microscope, log onto the directory %1:\MSCOPE and enter
echo MSCOPE2 at the DOS command line.
echo =================================================================
ECHO If you like what you see, please apply for extended SHAREWARE USE
ECHO CERTIFICATE or PURCHASE THE PROFESSIONAL VERSION. Molcol Software
echo has given you a chance to try before you buy - if you feel that
echo Microscopy has something to offer, help us to support you by
echo supporting us. Technology is advancing at an incredible rate,
echo let us ensure Microscopy is represented to a wider audience and
echo establishes a greater presence to young and old alike within this
echo new infrastructure of information exchange and self-learning !!!
echo =================================================================
echo If you have problems installing or running Microscope, refer to
echo the manual by using your favourite text editor in non-document
echo or raw text/ascii mode and reading the file called MANUAL.ASC, or
echo use the DOS 'TYPE' command to see the README.1ST file.
erase %1:\MSCOPE\install.bat > NUL
erase %1:\MSCOPE\inst2.bat > NUL